home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi1 / lessons.exe / lesson2 / CONV2.DFM / CONV2.txt
Encoding:
Text File  |  1995-12-06  |  1.6 KB  |  93 lines

  1. object Conv2Form: TConv2Form
  2.   Left = 252
  3.   Top = 124
  4.   Width = 528
  5.   Height = 161
  6.   Caption = 'Conv2Form'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 16
  13.   object Label1: TLabel
  14.     Left = 40
  15.     Top = 16
  16.     Width = 87
  17.     Height = 16
  18.     Caption = 'Convert from:'
  19.   end
  20.   object Label2: TLabel
  21.     Left = 40
  22.     Top = 56
  23.     Width = 70
  24.     Height = 16
  25.     Caption = 'Convert to:'
  26.   end
  27.   object ConvertFromEd: TEdit
  28.     Left = 192
  29.     Top = 8
  30.     Width = 121
  31.     Height = 24
  32.     TabOrder = 0
  33.   end
  34.   object ConvertToEd: TEdit
  35.     Left = 192
  36.     Top = 48
  37.     Width = 121
  38.     Height = 24
  39.     TabOrder = 1
  40.   end
  41.   object CalcBtn: TButton
  42.     Left = 192
  43.     Top = 80
  44.     Width = 121
  45.     Height = 33
  46.     Caption = '&Calculate'
  47.     TabOrder = 2
  48.     OnClick = CalcBtnClick
  49.   end
  50.   object GroupBox1: TGroupBox
  51.     Left = 336
  52.     Top = 8
  53.     Width = 137
  54.     Height = 105
  55.     Caption = ' Conversion Type '
  56.     TabOrder = 3
  57.     object KmToMilesRBtn: TRadioButton
  58.       Left = 8
  59.       Top = 16
  60.       Width = 113
  61.       Height = 17
  62.       Caption = 'Km To Miles'
  63.       Checked = True
  64.       TabOrder = 0
  65.       TabStop = True
  66.     end
  67.     object MilesToKmRBtn: TRadioButton
  68.       Left = 8
  69.       Top = 32
  70.       Width = 113
  71.       Height = 17
  72.       Caption = 'Miles To Km'
  73.       TabOrder = 1
  74.     end
  75.     object CToFRBtn: TRadioButton
  76.       Left = 8
  77.       Top = 48
  78.       Width = 113
  79.       Height = 17
  80.       Caption = 'C To F'
  81.       TabOrder = 2
  82.     end
  83.     object FToCRBtn: TRadioButton
  84.       Left = 8
  85.       Top = 64
  86.       Width = 113
  87.       Height = 17
  88.       Caption = 'F To C'
  89.       TabOrder = 3
  90.     end
  91.   end
  92. end
  93.